Package pl. wendigo. chrome. protocol
Contains DevTools protocol representation classes:
ProtocolConnection is a class responsible for sending and receiving protocol responses and events over WebsocketFramesStream
Event is a parent class of all events that are generated by protocol
RawEvent represents an event that is parameterless
Domain is parent class of all protocol domain classes
Domains is parent class representing whole protocol with all Domains
Types
DeserializationFailed
Link copied to clipboard
class DeserializationFailed(message: String, throwable: Throwable?) : Exception
Content copied to clipboard
Domain
Link copied to clipboard
open class Domain(name: String, description: String, connection: ProtocolConnection)
Content copied to clipboard
Domains
Link copied to clipboard
EventMapper
Link copied to clipboard
class EventMapper
Content copied to clipboard
EventMapper is responsible for mapping events carried by EventResponseFrame to concrete events representations.
Experimental
Link copied to clipboard
annotation class Experimental
Content copied to clipboard
InspectorCommandFailed
Link copied to clipboard
class InspectorCommandFailed(message: String, throwable: Throwable?) : Exception
Content copied to clipboard
ProtocolConnection
Link copied to clipboard
class ProtocolConnection(frames: WebSocketFramesStream, eventMapper: EventMapper, sessionId: SessionID?) : Closeable, AutoCloseable
Content copied to clipboard
ProtocolConnection represents connection to chrome's debugger via DevTools Protocol.
RequestFailed
Link copied to clipboard
SerializationFailed
Link copied to clipboard
class SerializationFailed(message: String, throwable: Throwable?) : Exception
Content copied to clipboard